home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-01 | 359 b | 14 lines | [TEXT/MPS ] |
- (* $Id: token.mli,v 1.3 1994/11/10 09:57:26 xleroy Exp $ *)
-
- #open "stream";;
-
- type token_type =
- IDENT of string | INT of int | OP of string
- | BSLASH | DOT | ELSE | EQUAL | FI | IF | LET | LPAREN | RPAREN | SEMICOL
- | THEN
- ;;
-
- value next_token : char stream -> token_type;;
- value reset_lexer : char stream -> unit;;
- value token_name : token_type -> string;;
-